crypto/cipher.ofb.outUsed (field)

9 uses

	crypto/cipher (current package)
		ofb.go#L18: 	outUsed int
		ofb.go#L37: 		outUsed: 0,
		ofb.go#L46: 	remain := len(x.out) - x.outUsed
		ofb.go#L47: 	if remain > x.outUsed {
		ofb.go#L50: 	copy(x.out, x.out[x.outUsed:])
		ofb.go#L58: 	x.outUsed = 0
		ofb.go#L69: 		if x.outUsed >= len(x.out)-x.b.BlockSize() {
		ofb.go#L72: 		n := subtle.XORBytes(dst, src, x.out[x.outUsed:])
		ofb.go#L75: 		x.outUsed += n